home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Jul / di9807rl / palview.dpr < prev    next >
Text File  |  1998-02-24  |  226b  |  14 lines

  1. program PalView;
  2.  
  3. uses
  4.   Forms,
  5.   ViewForm in 'ViewForm.pas' {PaletteForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'Palette Viewer';
  11.   Application.CreateForm(TPaletteForm, PaletteForm);
  12.   Application.Run;
  13. end.
  14.